home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webdav_enabled.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.   script_id(11424);
  10.   script_version ("$Revision: 1.6 $");
  11. # script_cve_id("CVE-MAP-NOMATCH");
  12.  
  13.   
  14.   name["english"] = "WebDAV enabled";
  15.  
  16.  
  17.   script_name(english:name["english"], francais:name["francais"]);
  18.   desc["english"] = "
  19. The remote server is running with WebDAV enabled. 
  20.  
  21. WebDAV is an industry standard extension to the HTTP specification.
  22. It adds a capability for authorized users to remotely add and manage
  23. the content of a web server.
  24.  
  25. If you do not use this extension, you should disable it.
  26.  
  27. Solution : See http://support.microsoft.com/default.aspx?kbid=241520
  28. Risk factor : Medium";
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "Checks the presence of WebDAV";
  34.  summary["francais"] = "VΘrifie la prΘsence de WebDAV";
  35.  script_summary(english:summary["english"], francais:summary["francais"]);
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  39.                 francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  40.  
  41.  family["english"] = "General";
  42.  
  43.  script_family(english:family["english"]);
  44.  
  45.  script_dependencie("find_service.nes");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50.  
  51. include("http_func.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55.  
  56. if(get_port_state(port))
  57. {
  58.   soc = http_open_socket(port);
  59.   if(soc)
  60.   {
  61.   req = string("OPTIONS * HTTP/1.0\r\n\r\n") ;
  62.   send(socket:soc, data:req);
  63.   r = http_recv_headers(soc);
  64.   close(soc);
  65.   if(egrep(pattern:"^DAV: ", string:r))
  66.    {
  67.     security_warning(port);
  68.    }
  69.   }
  70. }
  71.